home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / ast_text / faqs / c-faqs / abridged next >
Text File  |  1993-06-28  |  34KB  |  1,081 lines

  1. Path: senator-bedfellow.mit.edu!adam.mit.edu!scs
  2. From: scs@adam.mit.edu (Steve Summit)
  3. Newsgroups: comp.lang.c,comp.answers,news.answers
  4. Subject: comp.lang.c Answers (Abridged) to Frequently Asked Questions (FAQ)
  5. Supersedes: <1uek9jINNbmc@senator-bedfellow.MIT.EDU>
  6. Followup-To: poster
  7. Date: 15 Jun 1993 17:02:05 GMT
  8. Organization: none, at the moment
  9. Lines: 1062
  10. Approved: news-answers-request@MIT.Edu
  11. Expires: 3 Jul 1993 00:00:00 GMT
  12. Message-ID: <1vkvad$3hr@senator-bedfellow.MIT.EDU>
  13. Reply-To: scs@adam.mit.edu
  14. NNTP-Posting-Host: adam.mit.edu
  15. X-Last-Modified: May 15, 1993
  16. X-Archive-Name: C-faq/abridged
  17. Xref: senator-bedfellow.mit.edu comp.lang.c:72249 comp.answers:1007 news.answers:9427
  18.  
  19. Archive-name: C-faq/abridged
  20. Comp-lang-c-archive-name: C-FAQ-list.abridged
  21.  
  22. [Last modified May 15, 1993 by scs.]
  23.  
  24. This article contains minimal answers to the comp.lang.c frequently-
  25. asked questions list.  Please see the long version (posted on the
  26. first of each month, or see question 17.22 for availability) for more
  27. detailed explanations and references.
  28.  
  29.  
  30. Section 1. Null Pointers
  31.  
  32. 1.1:    What is this infamous null pointer, anyway?
  33.  
  34. A:    For each pointer type, there is a special value -- the "null
  35.     pointer" -- which is distinguishable from all other pointer
  36.     values and which is not the address of any object.
  37.  
  38. 1.2:    How do I "get" a null pointer in my programs?
  39.  
  40. A:    A constant 0 in a pointer context is converted into a null
  41.     pointer at compile time.  A "pointer context" is an
  42.     initialization, assignment, or comparison with one side a
  43.     variable or expression of pointer type, and (in ANSI standard C)
  44.     a function argument which has a prototype in scope declaring a
  45.     certain parameter as being of pointer type.  In other contexts
  46.     (function arguments without prototypes, or in the variable part
  47.     of variadic function calls) a constant 0 with an appropriate
  48.     explicit cast is required.
  49.  
  50. 1.3:    What is NULL and how is it #defined?
  51.  
  52. A:    NULL is simply a preprocessor macro, #defined as 0 (or
  53.     (void *)0), which is used (as a stylistic convention, in
  54.     preference to unadorned 0's) to generate null pointers,
  55.  
  56. 1.4:    How should NULL be #defined on a machine which uses a nonzero
  57.     bit pattern as the internal representation of a null pointer?
  58.  
  59. A:    The same as any other machine: as 0 (or (void *)0).  (The
  60.     compiler makes the translation, upon seeing a 0, not the
  61.     preprocessor.)
  62.  
  63. 1.5:    If NULL were defined as "(char *)0," wouldn't that make function
  64.     calls which pass an uncast NULL work?
  65.  
  66. A:    Not in general.  The problem is that there are machines which
  67.     use different internal representations for pointers to different
  68.     types of data.  A cast is still required to tell the compiler
  69.     which kind of null pointer is required, since it may be
  70.     different from (char *)0.
  71.  
  72. 1.6:    I use the preprocessor macro "#define Nullptr(type) (type *)0"
  73.     to help me build null pointers of the correct type.
  74.  
  75. A:    This trick, though valid, does not buy much.
  76.  
  77. 1.7:    Is the abbreviated pointer comparison "if(p)" to test for non-
  78.     null pointers valid?  What if the internal representation for
  79.     null pointers is nonzero?
  80.  
  81. A:    The construction "if(p)" works, regardless of the internal
  82.     representation of null pointers, because the compiler
  83.     essentially rewrites it as "if(p != 0)" and goes on to convert 0
  84.     into the correct null pointer.
  85.  
  86. 1.8:    If "NULL" and "0" are equivalent, which should I use?
  87.  
  88. A:    Either; the distinction is entirely stylistic.
  89.  
  90. 1.9:    But wouldn't it be better to use NULL (rather than 0) in case
  91.     the value of NULL changes, perhaps on a machine with nonzero
  92.     null pointers?
  93.  
  94. A:    No.  NULL is, and will always be, 0.
  95.  
  96. 1.10:    I'm confused.  NULL is guaranteed to be 0, but the null pointer
  97.     is not?
  98.  
  99. A:    A "null pointer" is a language concept whose particular internal
  100.     value does not matter.  A null pointer is requested in source
  101.     code with the character "0".  "NULL" is a preprocessor macro,
  102.     which is always #defined as 0 (or (void *)0).
  103.  
  104. 1.11:    Why is there so much confusion surrounding null pointers?  Why
  105.     do these questions come up so often?
  106.  
  107. A:    The fact that null pointers are represented both in source code,
  108.     and internally to most machines, as zero invites unwarranted
  109.     assumptions.  The use of a preprocessor macro (NULL) suggests
  110.     that the value might change later, or on some weird machine.
  111.  
  112. 1.12:    I'm still confused.  I just can't understand all this null
  113.     pointer stuff.
  114.  
  115. A:    A simple rule is, "Always use `0' or `NULL' for null pointers,
  116.     and always cast them when they are used as arguments in function
  117.     calls."
  118.  
  119. 1.13:    Given all the confusion surrounding null pointers, wouldn't it
  120.     be easier simply to require them to be represented internally by
  121.     zeroes?
  122.  
  123. A:    Such a requirement would accomplish little.
  124.  
  125. 1.14:    Seriously, have any actual machines really used nonzero null
  126.     pointers?
  127.  
  128. A:    Machines manufactured by Prime, Honeywell-Bull, and CDC, as well
  129.     as Symbolics Lisp Machines, have done so.
  130.  
  131. 1.15:    What does a run-time "null pointer assignment" error mean?
  132.  
  133. A:    It means that you've written through a null pointer.
  134.  
  135.  
  136. Section 2. Arrays and Pointers
  137.  
  138. 2.1:    I had the definition char a[6] in one source file, and in
  139.     another I declared extern char *a.  Why didn't it work?
  140.  
  141. A:    The declaration extern char *a simply does not match the actual
  142.     definition.  Use extern char a[].
  143.  
  144. 2.2:    But I heard that char a[] was identical to char *a.
  145.  
  146. A:    Not at all.  Arrays are not pointers.  A reference like x[3]
  147.     generates different code depending on whether x is an array or a
  148.     pointer.
  149.  
  150. 2.3:    So what is meant by the "equivalence of pointers and arrays"
  151.     in C?
  152.  
  153. A:    An lvalue of type array-of-T which appears in an expression
  154.     decays into a pointer to its first element; the type of the
  155.     resultant pointer is pointer-to-T.  So for an array a and
  156.     pointer p, you can say "p = a;" and then p[3] and a[3] will
  157.     access the same element.
  158.  
  159. 2.4:    Why are array and pointer declarations interchangeable as
  160.     function formal parameters?
  161.  
  162. A:    Since functions can never receive arrays as parameters, any
  163.     parameter declarations which "look like" arrays are treated by
  164.     the compiler as if they were pointers.
  165.  
  166. 2.5:    How can an array be an lvalue, if you can't assign to it?
  167.  
  168. A:    An array is not a "modifiable lvalue."
  169.  
  170. 2.6:    Why doesn't sizeof properly report the size of an array which is
  171.     a parameter to a function?
  172.  
  173. A:    The sizeof operator reports the size of the pointer parameter
  174.     which the function actually receives.
  175.  
  176. 2.7:    Someone explained to me that arrays were really just constant
  177.     pointers.
  178.  
  179. A:    An array name is "constant" in that it cannot be assigned to,
  180.     but an array is _not_ a pointer.
  181.  
  182. 2.8:    What is the real difference between arrays and pointers?
  183.  
  184. A:    Arrays automatically allocate space but are static; pointers are
  185.     dynamic.
  186.  
  187. 2.9:    I came across some "joke" code containing the "expression"
  188.     5["abcdef"] .  How can this be legal C?
  189.  
  190. A:    Yes, array subscripting is commutative in C.  The array
  191.     subscripting operation a[e] is defined as being equivalent to
  192.     *((a)+(e)).
  193.  
  194. 2.10:    My compiler complained when I passed a two-dimensional array to
  195.     a routine expecting a pointer to a pointer.
  196.  
  197. A:    The rule by which arrays decay into pointers is not applied
  198.     recursively.  An array of arrays (i.e. a two-dimensional array
  199.     in C) decays into a pointer to an array, not a pointer to a
  200.     pointer.
  201.  
  202. 2.11:    How do I write functions which accept 2-dimensional arrays when
  203.     the "width" is not known at compile time?
  204.  
  205. A:    It's not particularly easy.
  206.  
  207. 2.12:    How do I declare a pointer to an array?
  208.  
  209. A:    Usually, you don't want to.  Consider using a pointer to one of
  210.     the array's elements instead.
  211.  
  212. 2.13:    How can I dynamically allocate a multidimensional array?
  213.  
  214. A:    It is usually best to allocate an array of pointers, and then
  215.     initialize each pointer to a dynamically-allocated "row."  See
  216.     the full list for code samples.
  217.  
  218. 2.14:    How can I use statically- and dynamically-allocated
  219.     multidimensional arrays interchangeably when passing them to
  220.     functions?
  221.  
  222. A:    There is no single perfect method, but see the full list for
  223.     some ideas.
  224.  
  225. 2.15:    Can I simulate a non-0-based array with a pointer?
  226.  
  227. A:    Not if the pointer points outside of the block of memory it is
  228.     intended to access.
  229.  
  230. 2.16:    I passed a pointer to a function which initialized it, but the
  231.     pointer in the caller was unchanged.
  232.  
  233. A:    The called function probably altered only the passed copy of the
  234.     pointer.
  235.  
  236. 2.17:    I have a char * pointer that happens to point to some ints, and
  237.     I want to step it over them.  Why doesn't "((int *)p)++;" work?
  238.  
  239. A:    In C, a cast operator is a conversion operator, and by
  240.     definition it yields an rvalue, which cannot be assigned to, or
  241.     incremented with ++.
  242.  
  243.  
  244. Section 3. Memory Allocation
  245.  
  246. 3.1:    Why doesn't the code "char *answer; gets(answer);" work?
  247.  
  248. A:    The pointer variable "answer" has not been set to point to any
  249.     valid storage.  The simplest way to correct this fragment is to
  250.     use a local array, instead of a pointer.
  251.  
  252. 3.2:    I can't get strcat to work.  I tried "char *s1 = "Hello, ",
  253.     *s2 = "world!", *s3 = strcat(s1, s2);" but I got strange
  254.     results.
  255.  
  256. A:    Again, the problem is that space for the concatenated result is
  257.     not properly allocated.
  258.  
  259. 3.3:    But the man page for strcat says that it takes two char *'s as
  260.     arguments.  How am I supposed to know to allocate things?
  261.  
  262. A:    In general, when using pointers you _always_ have to consider
  263.     memory allocation, at least to make sure that the compiler is
  264.     doing it for you.
  265.  
  266. 3.4:    I have a function that is supposed to return a string, but when
  267.     it returns to its caller, the returned string is garbage.
  268.  
  269. A:    Make sure that the memory to which the function returns a
  270.     pointer is correctly (i.e. not locally) allocated.
  271.  
  272. 3.5:    You can't use dynamically-allocated memory after you free it,
  273.     can you?
  274.  
  275. A:    No.  Some early man pages implied otherwise, but the claim is no
  276.     longer valid.
  277.  
  278. 3.6:    How does free() know how many bytes to free?
  279.  
  280. A:    The malloc/free package remembers the size of each block it
  281.     allocates and returns.
  282.  
  283. 3.7:    So can I query the malloc package to find out how big an
  284.     allocated block is?
  285.  
  286. A:    Not portably.
  287.  
  288. 3.8:    When I free a dynamically-allocated structure containing
  289.     pointers, do I have to free each subsidiary pointer first?
  290.  
  291. A:    Yes.
  292.  
  293. 3.9:    Why doesn't my program's memory usage go down when I free
  294.     memory?
  295.  
  296. A:    Most implementations of malloc/free do not return freed memory
  297.     to the operating system.
  298.  
  299. 3.10:    Is it legal to pass a null pointer as the first argument to
  300.     realloc()?
  301.  
  302. A:    ANSI C sanctions this usage, but several earlier implementations
  303.     do not support it.
  304.  
  305. 3.11:    Is it safe to use calloc's zero-fill guarantee for pointer and
  306.     floating-point values?
  307.  
  308. A:    No.
  309.  
  310. 3.12:    What is alloca and why is its use discouraged?
  311.  
  312. A:    alloca allocates memory which is automatically freed when the
  313.     function which called alloca returns.  alloca cannot be written
  314.     portably, is difficult to implement on machines without a stack,
  315.     and fails under certain conditions if implemented simply.
  316.  
  317.  
  318. Section 4. Expressions
  319.  
  320. 4.1:    Why doesn't the code "a[i] = i++;" work?
  321.  
  322. A:    The variable i is both referenced and modified in the same
  323.     expression.
  324.  
  325. 4.2:    Under my compiler, the code "int i = 7; printf("%d\n", i++ * i++);"
  326.     prints 49.  Regardless of the order of evaluation, shouldn't it
  327.     print 56?
  328.  
  329. A:    The operations implied by the postincrement and postdecrement
  330.     operators ++ and -- are performed at some time after the
  331.     operand's former values are yielded and before the end of the
  332.     expression, but not necessarily immediately after, or before
  333.     other parts of the expression are evaluated.
  334.  
  335. 4.3:    But what about the &&, ||, and comma operators?
  336.  
  337. A:    There is a special exception for those operators, (as well
  338.     as ?: ); left-to-right evaluation is guaranteed.
  339.  
  340. 4.4:    If I'm not using the value of the expression, should I use i++
  341.     or ++i to increment a variable?
  342.  
  343. A:    Since the two forms differ only in the value yielded, they are
  344.     entirely equivalent when only their side effect is needed.
  345.  
  346. 4.5:    Why doesn't the code "int a = 1000, b = 1000;
  347.     long int c = a * b;" work?
  348.  
  349. A:    You must manually cast one of the operands to (long).
  350.  
  351.  
  352. Section 5. ANSI C
  353.  
  354. 5.1:    What is the "ANSI C Standard?"
  355.  
  356. A:    In 1983, the American National Standards Institute commissioned
  357.     a committee, X3J11, to standardize the C language.  After a
  358.     long, arduous process, the committee's work was finally ratified
  359.     as an American National Standard, X3.159-1989, on December 14,
  360.     1989, and published in the spring of 1990.  The Standard has
  361.     also been adopted as ISO/IEC 9899:1990.
  362.  
  363. 5.2:    How can I get a copy of the Standard?
  364.  
  365. A:    ANSI X3.159 has been officially superseded by ISO 9899.  Copies
  366.     are available from the American National Standards Institute in
  367.     New York, or from Global Engineering Documents in Irvine, CA.
  368.     See the unabridged list for addresses.
  369.  
  370. 5.3:    Does anyone have a tool for converting old-style C programs to
  371.     ANSI C, or for automatically generating prototypes?
  372.  
  373. A:    See the full list for details.
  374.  
  375. 5.4:    How do I keep the ANSI "stringizing" preprocessing operator from
  376.     stringizing the macro's name rather than its value?
  377.  
  378. A:    You must use a two-step #definition to force the macro to be
  379.     expanded as well as stringized.
  380.  
  381. 5.5:    What's the difference between "char const *p" and
  382.     "char * const p"?
  383.  
  384. A:    The former is a pointer to a constant character; the latter is a
  385.     constant pointer to a character.
  386.  
  387. 5.6:    Why can't I pass a char ** to a function which expects a
  388.     const char **?
  389.  
  390. A:    The rule which permits slight mismatches in qualified pointer
  391.     assignments is not applied recursively.
  392.  
  393. 5.7:    My ANSI compiler complains about a mismatch when it sees
  394.  
  395.         extern int func(float);
  396.  
  397.         int func(x)
  398.         float x;
  399.         {...
  400.  
  401. A:    You have mixed the new-style prototype declaration
  402.     "extern int func(float);" with the old-style definition
  403.     "int func(x) float x;".  "Narrow" types are treated differently
  404.     according to which syntax is used.  The problem can be fixed by
  405.     using either new-style (prototype) or old-style syntax
  406.     consistently.
  407.  
  408. 5.8:    Why does the declaration "extern f(struct x {int s;} *p);" give
  409.     me a warning message?
  410.  
  411. A:    A struct declared only within a prototype cannot be compatible
  412.     with other structs declared in the same source file.
  413.  
  414. 5.9:    I'm getting strange syntax errors inside code which I've
  415.     #ifdeffed out.
  416.  
  417. A:    Under ANSI C, #ifdeffed-out text must still consist of "valid
  418.     preprocessing tokens."  This means that there must be no
  419.     unterminated comments or quotes (i.e. no single apostrophes),
  420.     and no newlines inside quotes.
  421.  
  422. 5.10:    Can I declare main as void, to shut off these annoying "main
  423.     returns no value" messages?
  424.  
  425. A:    No.
  426.  
  427. 5.11:    Is exit(status) truly equivalent to returning status from main?
  428.  
  429. A:    Yes.
  430.  
  431. 5.12:    Why does the ANSI Standard not guarantee more than six monocase
  432.     characters of external identifier significance?
  433.  
  434. A:    The problem is older linkers which cannot be forced (by mere
  435.     words in a Standard) to upgrade.
  436.  
  437. 5.13:    What is the difference between memcpy and memmove?
  438.  
  439. A:    memmove offers guaranteed behavior if the source and destination
  440.     arguments overlap.
  441.  
  442. 5.14:    My compiler is rejecting the simplest possible test programs,
  443.     with all kinds of syntax errors.
  444.  
  445. A:    Perhaps it is a pre-ANSI compiler.
  446.  
  447. 5.15:    Why won't frobozz-cc, which claims to be ANSI compliant, accept
  448.     this code?
  449.  
  450. A:    Are you sure that the code being rejected doesn't rely on some
  451.     non-Standard extension?
  452.  
  453. 5.16:    Is char a[3] = "abc"; legal?
  454.  
  455. A:    Yes.
  456.  
  457. 5.17:    What are #pragmas and what are they good for?
  458.  
  459. A:    The #pragma directive provides a single, well-defined "escape
  460.     hatch" which can be used for extensions.
  461.  
  462.  
  463. Section 6. C Preprocessor
  464.  
  465. 6.1:    How can I write a generic macro to swap two values?
  466.  
  467. A:    There is no good answer to this question.  The best all-around
  468.     solution is probably to forget about using a macro.
  469.  
  470. 6.2:    I have some old code that tries to construct identifiers with a
  471.     macro like "#define Paste(a, b) a/**/b ", but it doesn't work
  472.     any more.
  473.  
  474. A:    Try the ANSI token-pasting operator ##.
  475.  
  476. 6.3:    What's the best way to write a multi-statement cpp macro?
  477.  
  478. A:    #define Func() do {stmt1; stmt2; ... } while(0)  /* (no trailing ;) */
  479.  
  480. 6.4:    Is it acceptable for one header file to #include another?
  481.  
  482. A:    There has been considerable debate surrounding this question.
  483.  
  484. 6.5:    Does the sizeof operator work in preprocessor #if directives?
  485.  
  486. A:    No.
  487.  
  488. 6.6:    How can I use a preprocessor #if expression to detect
  489.     endianness?
  490.  
  491. A:    You probably can't.
  492.  
  493. 6.7:    I've got this tricky processing I want to do at compile time and
  494.     I can't figure out a way to get cpp to do it.
  495.  
  496. A:    Consider writing your own little special-purpose preprocessing
  497.     tool, instead.
  498.  
  499. 6.8:    How can I preprocess some code to remove selected conditional
  500.     compilations, without preprocessing everything?
  501.  
  502. A:    Look for a program called unifdef.
  503.  
  504. 6.9:    How can I list all of the pre#defined identifiers?
  505.  
  506. A:    Try extracting printable strings from the compiler or
  507.     preprocessor executable.
  508.  
  509. 6.10:    How can I write a cpp macro which takes a variable number of
  510.     arguments?
  511.  
  512. A:    Here is one popular trick.  Note that the parentheses around
  513.     printf's argument list are in the macro call, not the
  514.     definition.
  515.  
  516.         #define DEBUG(args) (printf("DEBUG: "), printf args)
  517.  
  518.         if(n != 0) DEBUG(("n is %d\n", n));
  519.  
  520.  
  521. Section 7. Variable-Length Argument Lists
  522.  
  523. 7.1:    How can I write a function that takes a variable number of
  524.     arguments?
  525.  
  526. A:    Use the <stdarg.h> (or older <varargs.h>) header.
  527.  
  528. 7.2:    How can I write a function that takes a format string and a
  529.     variable number of arguments, like printf, and passes them to
  530.     printf to do most of the work?
  531.  
  532. A:    Use vprintf, vfprintf, or vsprintf.
  533.  
  534. 7.3:    How can I discover how many arguments a function was actually
  535.     called with?
  536.  
  537. A:    Any function which takes a variable number of arguments must be
  538.     able to determine from the arguments themselves how many of them
  539.     there are.
  540.  
  541. 7.4:    I can't get the va_arg macro to pull in an argument of type
  542.     pointer-to-function.
  543.  
  544. A:    Use a typedef.
  545.  
  546. 7.5:    How can I write a function which takes a variable number of
  547.     arguments and passes them to some other function (which takes a
  548.     variable number of arguments)?
  549.  
  550. A:    In general, you cannot.
  551.  
  552. 7.6:    How can I call a function with an argument list built up at run
  553.     time?
  554.  
  555. A:    You can't.
  556.  
  557.  
  558. Section 8. Boolean Expressions and Variables
  559.  
  560. 8.1:    What is the right type to use for boolean values in C?  Why
  561.     isn't it a standard type?  Should #defines or enums be used for
  562.     the true and false values?
  563.  
  564. A:    C does not provide a standard boolean type, because picking one
  565.     involves a space/time tradeoff which is best decided by the
  566.     programmer.  The choice between #defines and enums is arbitrary
  567.     and not terribly interesting.
  568.  
  569. 8.2:    What if a built-in boolean or relational operator "returns"
  570.     something other than 1?
  571.  
  572. A:    When a boolean value is generated by a built-in operator, it is
  573.     guaranteed to be 1 or 0.  (This is _not_ true for some library
  574.     routines such as isalpha.)
  575.  
  576.  
  577. Section 9. Structs, Enums, and Unions
  578.  
  579. 9.1:    What is the difference between an enum and a series of
  580.     preprocessor #defines?
  581.  
  582. A:    At the present time, there is little difference.  The ANSI
  583.     standard states that enumerations are compatible with integral
  584.     types.
  585.  
  586. 9.2:    I heard that structures could be assigned to variables and
  587.     passed to and from functions, but K&R I says not.
  588.  
  589. A:    These operations are supported by all modern compilers.
  590.  
  591. 9.3:    How does struct passing and returning work?
  592.  
  593. A:    If you really need to know, see the unabridged list.
  594.  
  595. 9.4:    I have a program which works correctly, but dumps core after it
  596.     finishes.  Why?
  597.  
  598. A:    Check to see if a structure type declaration just before main is
  599.     missing its trailing semicolon, causing the compiler to believe
  600.     that main returns a structure.  See also question 17.15.
  601.  
  602. 9.5:    Why can't you compare structs?
  603.  
  604. A:    There is no reasonable way for a compiler to implement struct
  605.     comparison which is consistent with C's low-level flavor.
  606.  
  607. 9.6:    I came across some code that declared a structure with the last
  608.     member an array of one element, and then did some tricky
  609.     allocation to make the array act like it had several elements.
  610.     Is this legal and/or portable?
  611.  
  612. A:    The ANSI C standard allows it, but only implicitly.
  613.  
  614. 9.7:    How can I determine the byte offset of a field within a
  615.     structure?
  616.  
  617. A:    ANSI C defines the offsetof macro, which should be used if
  618.     available.
  619.  
  620. 9.8:    How can I access structure fields by name at run time?
  621.  
  622. A:    Build a table of names and offsets, using the offsetof() macro.
  623.  
  624. 9.9:    Why does sizeof report a larger size than I expect for a
  625.     structure type, as if there was padding at the end?
  626.  
  627. A:    The alignment of arrays of structures must be preserved.
  628.  
  629. 9.10:    Can I turn off structure padding?
  630.  
  631. A:    There is no standard method.
  632.  
  633. 9.11:    Can I initialize unions?
  634.  
  635. A:    ANSI Standard C allows an initializer for the first member.
  636.  
  637.  
  638. Section 10. Declarations
  639.  
  640. 10.1:    How do you decide which integer type to use?
  641.  
  642. A:    If you might need large values, use long.  Otherwise, if space
  643.     is very important, use short.  Otherwise, use int.
  644.  
  645. 10.2:    What should the 64-bit type on new, 64-bit machines be?
  646.  
  647. A:    There are arguments in favor of both long int and long long int.
  648.  
  649. 10.3:    I can't seem to define a linked list node which contains a
  650.     pointer to itself.
  651.  
  652. A:    Structs in C can certainly contain pointers to themselves; the
  653.     discussion and example in section 6.5 of K&R make this clear.
  654.     Problems arise if an attempt is made to define (and use) a
  655.     typedef in the midst of such a declaration; avoid this.
  656.  
  657. 10.4:    How do I declare an array of pointers to functions returning
  658.     pointers to functions returning pointers to characters?
  659.  
  660. A:    char *(*(*a[5])())();
  661.     Using a chain of typedefs, or the cdecl program, makes these
  662.     declarations easier.
  663.  
  664. 10.5:    How can I declare a function that returns a pointer to a
  665.     function of its own type?
  666.  
  667. A:    You can't do it directly.
  668.  
  669. 10.6:    What's the best way to declare and define global variables?
  670.  
  671. A:    It is best to place the definition in some central .c file, with
  672.     an external declaration in a header file.
  673.  
  674. 10.7:    How do I initialize a pointer to a function?
  675.  
  676. A:    Use something like "extern int func(); int (*fp)() = func;" .
  677.  
  678. 10.8:    I've seen different methods used for calling through pointers to
  679.     functions.
  680.  
  681. A:    The extra parentheses and explicit * are now officially
  682.     optional, although some older implementations require them.
  683.  
  684.  
  685. Section 11. Stdio
  686.  
  687. 11.1:    Why doesn't the code "char c; while((c = getchar()) != EOF)..."
  688.     work?
  689.  
  690. A:    The variable to hold getchar's return value must be an int.
  691.  
  692. 11.2:    Why doesn't the code scanf("%d", i); work?
  693.  
  694. A:    You must always pass addresses to scanf.
  695.  
  696. 11.3:    Why doesn't the code double d; scanf("%f", &d); work?
  697.  
  698. A:    With scanf, use %lf for double, and %f for float.
  699.  
  700. 11.4:    Why won't the code "while(!feof(fp)) fgets(buf, MAXLINE, fp);"
  701.     work?
  702.  
  703. A:    EOF is only indicated _after_ an input routine has reached
  704.     end-of-file.
  705.  
  706. 11.5:    Why does everyone say not to use gets()?
  707.  
  708. A:    It cannot be prevented from overflowing the input buffer.
  709.  
  710. 11.6:    Why does errno contain ENOTTY after a call to printf?
  711.  
  712. A:    Don't worry about it.  It is only meaningful for a program to
  713.     inspect the contents of errno after an error has occurred.
  714.  
  715. 11.7:    My program's prompts and intermediate output don't always show
  716.     up on the screen, especially when I pipe the output through
  717.     another program.
  718.  
  719. A:    It is best to use an explicit fflush(stdout) whenever output
  720.     should definitely be visible.
  721.  
  722. 11.8:    When I read from the keyboard with scanf, it seems to hang until
  723.     I type one extra line of input.
  724.  
  725. A:    scanf was designed for free-format input, which is seldom what
  726.     you want when reading from the keyboard.
  727.  
  728. 11.9:    I'm trying to update a file in place, by using fopen mode "r+",
  729.     but it's not working.
  730.  
  731. A:    Be sure to call fseek between reading and writing.
  732.  
  733. 11.10:    How can I read one character at a time, without waiting for the
  734.     RETURN key?
  735.  
  736. A:    See question 16.1.
  737.  
  738. 11.11:    Will fflush(stdin) flush unread characters from the standard
  739.     input stream?
  740.  
  741. A:    No.
  742.  
  743. 11.12:    How can I redirect stdin or stdout from within a program?
  744.  
  745. A:    Use freopen.
  746.  
  747. 11.13:    Once I've used freopen, how can I get the original stdout back?
  748.  
  749. A:    It's not easy.  Try avoiding freopen.
  750.  
  751. 11.14:    How can I recover the file name given an open file descriptor?
  752.  
  753. A:    This problem is, in general, insoluble.  It is best to remember
  754.     the names of files yourself when you open them.
  755.  
  756.  
  757. Section 12. Library Subroutines
  758.  
  759. 12.1:    Why does strncpy not always write a '\0'?
  760.  
  761. A:    For mildly-interesting historical reasons.
  762.  
  763. 12.2:    I'm trying to sort an array of strings with qsort, using strcmp
  764.     as the comparison function, but it's not working.
  765.  
  766. A:    You'll have to write a "helper" comparison function which takes
  767.     two generic pointer arguments, converts them to char **, and
  768.     dereferences them, yielding char *'s which can be usefully
  769.     compared.
  770.  
  771. 12.3:    Now I'm trying to sort an array of structures with qsort.  My
  772.     comparison routine takes pointers to structures, but the
  773.     compiler complains that the function is of the wrong type for
  774.     qsort.  How can I cast the function pointer to shut off the
  775.     warning?
  776.  
  777. A:    The conversions must be in the comparison function, which must
  778.     be declared as accepting "generic pointers" (const void * or
  779.     char *).
  780.  
  781. 12.4:    How can I convert numbers to strings?
  782.  
  783. A:    Just use sprintf.
  784.  
  785. 12.5:    How can I get the time of day in a C program?
  786.  
  787. A:    Just use the time, ctime, and/or localtime functions.
  788.  
  789. 12.6:    How can I convert a struct tm or a string into a time_t?
  790.  
  791. A:    The ANSI mktime routine converts a struct tm to a time_t.
  792.     No standard routine exists to parse strings.
  793.  
  794. 12.7:    I need a random number generator.
  795.  
  796. A:    The standard C library has one: rand().
  797.  
  798. 12.8:    Each time I run my program, I get the same sequence of numbers
  799.     back from rand().
  800.  
  801. A:    You can call srand() to seed the pseudo-random number generator
  802.     with a more random initial value.
  803.  
  804. 12.9:    I need a random true/false value, so I'm taking rand() % 2, but
  805.     it's just alternating 0, 1, 0, 1, 0...
  806.  
  807. A:    Try using the higher-order bits.
  808.  
  809. 12.10-14:I 'm trying to port this old program.  Why do I get "undefined
  810.     external" errors for some library routines?
  811.  
  812. A:    Some semistandard routines have been renamed or replaced over
  813.     the years; see the full list for details.
  814.  
  815. 12.15:    How can I execute a command with system() and read its output
  816.     into a program?
  817.  
  818. A:    Unix and some other systems provide a popen() routine.
  819.  
  820. 12.16:    How can I read a directory in a C program?
  821.  
  822. A:    See if you can use the opendir() and readdir() routines.
  823.  
  824.  
  825. Section 13. Lint
  826.  
  827. 13.1:    I just typed in this program, and it's acting strangely.
  828.     Can you see anything wrong with it?
  829.  
  830. A:    Try running lint first.
  831.  
  832. 13.2:    How can I shut off the "warning: possible pointer alignment
  833.     problem" message lint gives me for each call to malloc?
  834.  
  835. A:    It may be easier simply to ignore the message, perhaps in an
  836.     automated way with grep -v.
  837.  
  838. 13.3:    Where can I get an ANSI-compatible lint?
  839.  
  840. A:    See the unabridged list for two commercial products.
  841.  
  842.  
  843. Section 14. Style
  844.  
  845. 14.1:    Is the code "if(!strcmp(s1, s2))" good style?
  846.  
  847. A:    Not particularly.
  848.  
  849. 14.2:    What's the best style for code layout in C?
  850.  
  851. A:    There is no one "best style," but see the full list for a few
  852.     suggestions.
  853.  
  854. 14.3:    Where can I get the "Indian Hill Style Guide" and other coding
  855.     standards?
  856.  
  857. A:    See the unabridged list.
  858.  
  859.  
  860. Section 15. Floating Point
  861.  
  862. 15.1:    My floating-point calculations are acting strangely and giving
  863.     me different answers on different machines.
  864.  
  865. A:    First, make sure that you have #included <math.h>, and correctly
  866.     declared other functions returning double.  If the problem isn't
  867.     that simple, see the full list for a brief explanation, or any
  868.     good programming book for a better one.
  869.  
  870. 15.2:    I keep getting "undefined: _sin" compilation errors.
  871.  
  872. A:    Make sure you're linking against the correct math library.
  873.  
  874. 15.3:    Why doesn't C have an exponentiation operator?
  875.  
  876. A:    Try using the pow() function.
  877.  
  878. 15.4:    I'm having trouble with a Turbo C program which crashes and says
  879.     something like "floating point formats not linked."
  880.  
  881. A:    Some compilers for small machines, including Turbo C, attempt to
  882.     leave out floating point support if it looks like it will not be
  883.     needed.  The programmer must occasionally insert an extra,
  884.     explicit call to a floating-point library routine to force
  885.     loading of floating-point support.
  886.  
  887.  
  888. Section 16. System Dependencies
  889.  
  890. 16.1:    How can I read a single character from the keyboard without
  891.     waiting for a newline?
  892.  
  893. A:    Contrary to popular belief and many people's wishes, this is not
  894.     a C-related question.  How to do so is a function of the
  895.     operating system in use.
  896.  
  897. 16.2:    How can I find out if there are characters available for reading
  898.     (and if so, how many)?  Alternatively, how can I do a read that
  899.     will not block if there are no characters available?
  900.  
  901. A:    These, too, are entirely operating-system-specific.
  902.  
  903. 16.3:    How can I clear the screen?
  904.  
  905. A:    Such things depend on the output device you're using.
  906.  
  907. 16.4:    How do I read the mouse?
  908.  
  909. A:    What system are you using?
  910.  
  911. 16.5:    How can my program discover the complete pathname to the
  912.     executable file from which it was invoked?
  913.  
  914. A:    argv[0] may contain all or part of the pathname.  You may be
  915.     able to duplicate the command language interpreter's search path
  916.     logic to locate the executable.
  917.  
  918. 16.6:    How can a process change an environment variable in its caller?
  919.  
  920. A:    In general, it cannot.
  921.  
  922. 16.7:    How can I find out the size of a file, prior to reading it in?
  923.  
  924. A:    You might be able to get an estimate using stat() or
  925.     fseek/ftell.
  926.  
  927. 16.8:    How can a file be shortened in-place without completely clearing
  928.     or rewriting it?
  929.  
  930. A:    There are various ways to do this, but there is no truly
  931.     portable solution.
  932.  
  933. 16.9:    How can I implement a delay, or time a user's response, with
  934.     sub-second resolution?
  935.  
  936. A:    Unfortunately, there is no portable way.
  937.  
  938. 16.10:    How can I read in an object file and jump to routines in it?
  939.  
  940. A:    You want a dynamic linker and/or loader.
  941.  
  942.  
  943. Section 17. Miscellaneous
  944.  
  945. 17.1:    What can I safely assume about the initial values of variables
  946.     which are not explicitly initialized?
  947.  
  948. A:    Variables with "static" duration start out as 0, as if the
  949.     programmer had initialized them.  Variables with "automatic"
  950.     duration, and dynamically-allocated memory, start out containing
  951.     garbage (with the exception of calloc).
  952.  
  953. 17.2:    How can I write data files which can be read on other machines
  954.     with different data formats?
  955.  
  956. A:    The best solution is to use text files.
  957.  
  958. 17.3:    How can I return several values from a function?
  959.  
  960. A:    Either pass pointers to locations which the function can fill
  961.     in, or have the function return a structure containing the
  962.     desired values.
  963.  
  964. 17.4:    How can I call a function, given its name as a string?
  965.  
  966. A:    The most straightforward thing to do is maintain a
  967.     correspondence table of names and function pointers.
  968.  
  969. 17.5:    I seem to be missing the system header file <sgtty.h>.
  970.     Can someone send me a copy?
  971.  
  972. A:    You cannot just pick up a copy of someone else's header file and
  973.     expect it to work, since the definitions within header files are
  974.     frequently system-dependent.  Contact your vendor.
  975.  
  976. 17.6:    How can I call FORTRAN (C++, BASIC, Pascal, Ada, LISP) functions
  977.     from C?
  978.  
  979. A:    The answer is entirely dependent on the machine and the specific
  980.     calling sequences of the various compilers in use.
  981.  
  982. 17.7:    Does anyone know of a program for converting Pascal or FORTRAN
  983.     to C?
  984.  
  985. A:    Several public-domain programs are available, namely ptoc, p2c,
  986.     and f2c.  See the full list for details.
  987.  
  988. 17.8:    Where can I get copies of all these public-domain programs?
  989.  
  990. A:    See the regular postings in the comp.sources.unix and
  991.     comp.sources.misc newsgroups for information.
  992.  
  993. 17.9:    When will the next Obfuscated C Code Contest be held?  
  994.     How can I get a copy of the previous winning entries?
  995.  
  996. A:    See the full list, or send e-mail to judges@toad.com .
  997.  
  998. 17.10:    Why don't C comments nest?  Are they legal inside quoted
  999.     strings?
  1000.  
  1001. A:    Nested comments would cause more harm than good.  The character
  1002.     sequences /* and */ are not special within double-quoted
  1003.     strings.
  1004.  
  1005. 17.11:    How can I implement sets and/or arrays of bits?
  1006.  
  1007. A:    Use arrays of char or int, with a few macros to access the right
  1008.     bit at the right index.
  1009.  
  1010. 17.12:    What is the most efficient way to count the number of bits which
  1011.     are set in a value?
  1012.  
  1013. A:    This and many other similar bit-twiddling problems can often be
  1014.     sped up and streamlined using lookup tables.
  1015.  
  1016. 17.13:    How can I make this code more efficient?
  1017.  
  1018. A:    Efficiency is not important nearly as often as people tend to
  1019.     think it is.  Most of the time, by simply paying attention to
  1020.     good algorithm choices, perfectly acceptable results can be
  1021.     achieved.
  1022.  
  1023. 17.14:    Are pointers really faster than arrays?  How much do function
  1024.     calls slow things down?
  1025.  
  1026. A:    Precise answers to these and many similar questions depend of
  1027.     course on the processor and compiler in use.
  1028.  
  1029. 17.15:    This program crashes before it even runs!
  1030.  
  1031. A:    Look for very large, local arrays.
  1032.     (See also question 9.4.)
  1033.  
  1034. 17.16:    What does "Segmentation violation" mean?
  1035.  
  1036. A:    It generally means that your program tried to access memory it
  1037.     shouldn't have.
  1038.  
  1039. 17.17:    My program is crashing, apparently somewhere down inside malloc.
  1040.  
  1041. A:    Make sure you aren't using more memory than you malloc'ed,
  1042.     especially for strings (which need strlen() + 1 bytes).
  1043.  
  1044. 17.18:    Does anyone have a C compiler test suite I can use?
  1045.  
  1046. A:    See the full list for several sources.
  1047.  
  1048. 17.19:    Where can I get a YACC grammar for C?
  1049.  
  1050. A:    See the ANSI Standard, or the unabridged list.
  1051.  
  1052. 17.20:    How do you pronounce "char"?
  1053.  
  1054. A:    Like the English words "char," "care," or "car" (your choice).
  1055.  
  1056. 17.21:    What's a good book for learning C?
  1057.  
  1058. A:    There are far too many to list here; the full list contains a
  1059.     few pointers.
  1060.  
  1061. 17.22:    Where can I get extra copies of this list?
  1062.  
  1063. A:    For now, just pull it off the net; the unabridged version is
  1064.     normally posted on the first of each month, with an Expiration:
  1065.     line which should keep it around all month.  It can also be
  1066.     found in the newsgroups comp.answers and news.answers .  Several
  1067.     sites archive news.answers postings and other FAQ lists,
  1068.     including this one: two sites are rtfm.mit.edu (directory
  1069.     pub/usenet), and ftp.uu.net (directory usenet).  The archie
  1070.     server should help you find others.
  1071.  
  1072.  
  1073.                     Steve Summit
  1074.                     scs@adam.mit.edu
  1075.                     scs%adam.mit.edu@mit.edu
  1076.                     mit-eddie!adam.mit.edu!scs
  1077.  
  1078. This article is Copyright 1988, 1990-1993 by Steve Summit.
  1079. It may be freely redistributed so long as the author's name, and this
  1080. notice, are retained.
  1081.